2f54864047f1f57014298aae88f294f30414f794,community/kernel/src/test/java/org/neo4j/kernel/impl/storemigration/MigrationTestUtils.java,MigrationTestUtils,findOldFormatStoreDirectory,#,122

Before Change



    public static File findOldFormatStoreDirectory()
    {
        URL legacyStoreResource = LegacyStore.class.getResource( "exampledb/neostore" );
        return new File( legacyStoreResource.getFile() ).getParentFile();
    }

    public static boolean allStoreFilesHaveVersion( FileSystemAbstraction fileSystem, File workingDirectory,

After Change



    public static File findOldFormatStoreDirectory() throws IOException
    {
        return Unzip.unzip( LegacyStore.class, "exampledb.zip" );
    }

    public static boolean allStoreFilesHaveVersion( FileSystemAbstraction fileSystem, File workingDirectory,